* storage.
*/
static void *
-pread(void)
+pas_read(void)
{
char *d;
int ilen;
for (tag = fgetc(file_in); tag != 0xff; tag = fgetc(file_in)) {
switch (tag) {
case 1:
- wpt_tmp->shortname = (char *) pread();
+ wpt_tmp->shortname = (char *) pas_read();
break;
case 2:
case 3:
- wpt_tmp->description = (char *) pread();
+ wpt_tmp->description = (char *) pas_read();
break;
case 5:
- wpt_tmp->notes = (char *) pread();
+ wpt_tmp->notes = (char *) pas_read();
break;
case 6:
- wpt_tmp->url_link_text = (char *) pread();
+ wpt_tmp->url_link_text = (char *) pas_read();
break;
case 7:
- wpt_tmp->icon_descr = (char *) pread();
+ wpt_tmp->icon_descr = (char *) pas_read();
wpt_tmp->wpt_flags.icon_descr_is_dynamic = 1;
break;
case 8: /* NULL Terminated (vs. pascal) descr */